home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / sharew / musik / diti_tra.ck / dt_modul.deu / example / makefile < prev   
Encoding:
Makefile  |  1993-07-07  |  451 b   |  20 lines

  1. # Beispiel-Makefile für DigiTape Module
  2. # Letzte Änderung: 1.7.93
  3.  
  4. OBJECTS = hall.r HALL.D
  5.  
  6. xyz.x : $(OBJECTS)
  7.     $(RM) xyz.x
  8.  
  9. # aus RSC-File C-Source File HALL.R  erzeugen
  10. hall.r : hall.rsc
  11.     \dt_modul\rsc_to_c.ttp $*.rsc
  12.  
  13. # aus DSP56000 Assembler Source File C-Source File
  14. # HALL.D und Define File HALL.DH erzeugen
  15. HALL.D : HALL.CLN
  16.     \dt_modul\cln_to_d.ttp $*
  17. HALL.CLN : HALL.ASM
  18.     \dt_modul\asm56000.ttp -b \dt_modul\example\$*.ASM
  19.  
  20.